home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
wsc4c21.zip
/
SELF32._M_
< prev
next >
Wrap
Text File
|
1997-05-22
|
955b
|
38 lines
#
# Microsoft makefile for SELFTEST [Win32]
# Requires WSC32.LIB & WSC32.DLL
#
# To use: "nmake self32._m_"
#
CCFLAGS = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
selftest.exe: selftest.res selftest.obj selftest.def wsc32.lib \
about.obj line.obj paint.obj sioerror.obj \
menu.obj runtest.obj
link selftest paint line about menu runtest sioerror wsc32.lib kernel32.lib user32.lib gdi32.lib selftest.res
selftest.res: selftest.rc
rc -dWIN32 selftest.rc
about.obj: about.c about.h
cl $(CCFLAGS) about.c
selftest.obj: selftest.c selftest.h wsc.h
cl $(CCFLAGS) selftest.c
sioerror.obj: sioerror.c sioerror.h wsc.h
cl $(CCFLAGS) sioerror.c
paint.obj: paint.c paint.h
cl $(CCFLAGS) paint.c
line.obj: line.c line.h wsc.h
cl $(CCFLAGS) line.c
menu.obj: menu.c menu.h wsc.h
cl $(CCFLAGS) menu.c
runtest.obj: runtest.c runtest.h wsc.h
cl $(CCFLAGS) runtest.c